home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CLPMOUSE.ARJ / WINDTIP.DOC < prev   
Text File  |  1991-01-21  |  2KB  |  66 lines

  1. WINDOWS for CLIPPER 5.0  (c) Matthew S. Staben  1991
  2. -----------------------
  3.  
  4. A couple of tips for CLIPPER windows:
  5.  
  6. 1. To explicitly return to DOS from your application, use:
  7.  
  8.    WINCLOSE(wintotal())
  9.    WINDONE()
  10.    QUIT
  11.  
  12. 2. When opening a window, determine how many rows you need to hold information
  13.    and open it one taller.  Open it two wider than the maximum string length.
  14.  
  15.  
  16. FUNCTIONS combined with CLPWIN52.LIB.
  17.  
  18. Since CLIPPER 5.0 supplied functions which already exist, and do not need
  19. replacement, the windowing functions call these supplied functions (which
  20. can be in overlays!).  The following is a comprehensive list of functions
  21. which may be used. 
  22.  
  23. NOTE: WINMOVETO() utilizes the WINMOVE() function.
  24.  
  25. Functions held in CLIPPER.LIB
  26.  
  27.   FUNCTION           UTILIZED BY
  28.  ---------      ----------------------
  29.  
  30.  ASC()          WINCOLOR()               
  31.  AT()           WININIT(), WINTITLE(), WINOPEN()
  32.  CHR()          WINTITLE(), WINOPEN(), WINCOLOR(), WIN_SGRAPH()
  33.  FCLOSE()       WINDONE()
  34.  FCREATE()      WININIT()
  35.  FERASE()       WINDONE()
  36.  FREADSTR()     100% windowing functions
  37.  FSEEK()        100% windowing functions
  38.  FWRITE()       WININIT(), WINOPEN(), WINCLOSE(), WINSWAP(), WINMOVE()
  39.  GETENV()       WININIT()
  40.  IF()           WIN_SGRAPH()
  41.  INT()          WINMOVETO(), WIN_SGRAPH()
  42.  LEN()          WINTITLE(), WINOPEN(), WIN_SGRAPH()
  43.  MAX()          WINCOLOR()
  44.  MAXCOL()       WINBACK(), WINOPEN(), WINMOVE()
  45.  MAXROW()       WINBACK(), WINOPEN(), WINMOVE()
  46.  REPLICATE()    WINBACK(), WINTITLE(), WINOPEN(), WIN_SGRAPH()
  47.  SETCOLOR()     WINTITLE(), WINOPEN(), WIN_SGRAPH()        
  48.  SPACE()        WIN_SGRAPH()                          
  49.  STR()          WIN_SGRAPH()
  50.  SUBSTR()       100% windowing functions
  51.  VAL()          100% windowing functions
  52.  
  53. Functions held in EXTEND.LIB
  54.  
  55.   FUNCTION           UTILIZED BY
  56.  ---------      ----------------------
  57.  ACHOICE()      WINACHOICE()
  58.  ALLTRIM()      WINTITLE(), WINOPEN(), WIN_SGRAPH()  
  59.  BROWSE()       WINBROWSE()
  60.  MEMOEDIT()     WINMEMOEDIT()  
  61.  PADL()         WINOPEN(), WINCLOSE(), WINSIZE(), WINSWAP(), WINMOVE()  
  62.  RESTSCREEN()   WINCLOSE(), WINOPEN(), WINSIZE(), WINSWAP(), WINMOVE(), 
  63.                 WINCOLOR() 
  64.  SAVESCREEN()   WINOPEN(), WINCLOSE(), WINSIZE(), WINSWAP(), WINMOVE(),
  65.                 WINCOLOR()        
  66.